iT邦幫忙

2023 iThome 鐵人賽

DAY 6
0
Mobile Development

iOS軟體開發系列 第 6

textfile 輸入值可以改變siler的值

  • 分享至 

  • xImage
  •  

因為要輸入值後要動作所以我們也要使用到IBAction,在IBAction裏面我們需要將我們所輸入的數字轉成siler看得懂的/images/emoticon/emoticon13.gif
所以

   if let RedStringValue = redvalue.text{
    if let RedIntValue = Int(RedStringValue){
     red.setValue(Float(RedIntValue), animated: true)
     }
     }
     

這樣siler就可以知道我們text裏面所設定得數字是多少了
我想在裡面做隨機顏色的部分,因為是要在按下後有動作,所以一樣用IBAction來做透過rondom來完成

    red.value = Float.random(in: 0...255)
    green.value = Float.random(in: 0...255)
    blue.value = Float.random(in: 0...255)
    

這樣就可以完成隨機顯示顏色了/images/emoticon/emoticon08.gif


上一篇
完成調色盤siler拉數值有變化
下一篇
介紹realm
系列文
iOS軟體開發30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言